home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
PRINTING
/
PAGESET
/
DEMOPRJ.DPR
< prev
next >
Wrap
Text File
|
1996-09-12
|
266b
|
16 lines
program DemoPrj;
uses
Forms,
Demo in 'Demo.pas' {Form1},
AboutWnd in 'AboutWnd.pas' {About};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TAbout, About);
Application.Run;
end.